Get REAL!
  • Girl Survey
  • Session Summary
README

This is not a live dashboard!

Data was last updated 04/04/2025.

Pre Surveys

339

Post Surveys

101

Date entry by Council:
Council Post Pre
Citrus Council 0 112
Gateway Council 51 97
Southeast Council 50 103
West Central Council 0 27
Total 101 339

Get REAL! Girl Survey Data Entry Report

Pre Surveys by Site:
Inputs.table(filtered)
Post Surveys by Site:
Inputs.table(postSite)
//| expandable: false

// Tranpose the data to  make it usable in ojs


// Create a dropdown menu of the songs
viewof councilDropdown = Inputs.select(
  survey_data_ojs.map(d => d.council),
  {
    label: "Choose a council",
    unique: true
  }
)
README

This is not a live dashboard!

Data was last updated 04/04/2025.

Session Summary:
Council n percent
Citrus Council 73 28.6%
Gateway Council 96 37.6%
Southeast Council 86 33.7%
Total 255 -

Get REAL! Session Summary Data Entry Report

Session Summary by Site:
Inputs.table(session)
// Tranpose the data to  make it usable in ojs


// Create a dropdown menu of the songs
viewof councilDropdown1 = Inputs.select(
  survey_data_ojs.map(d => d.council),
  {
    label: "Choose a council",
    unique: true
  }
)
session_summary_ojs = transpose(session_data)
sessionSiteCount_ojs = transpose(sessionSiteCount)
survey_data_ojs = transpose(survey_data)


//Tranpose the data to  make it usable in ojs
surveySiteCount_ojs= transpose(surveyPreSiteCount)
surveyPostSiteCount_ojs= transpose(surveyPostSiteCount)
filtered = surveySiteCount_ojs.filter(function(x) {
  return councilDropdown == x.council;
})
postSite = surveyPostSiteCount_ojs.filter(function(x) {
  return councilDropdown == x.council;
})
session = sessionSiteCount_ojs.filter(function(x) {
    return councilDropdown1 == x.council;
}
                                    )